home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Select (Limited Edition)
/
Computer Select.iso
/
dobbs
/
v17n03
/
ucrasm.exe
/
SOURCE.EXE
/
LWRTBL.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1991-10-12
|
399 b
|
34 lines
stdData segment para public 'sldata'
;
;
;
public $lwrtbl
;
; Output all chars up to the upper case letters here.
;
$lwrtbl equ this byte
i = 0
rept 'A'
db i
i = i + 1
endm
;
; Output uc for lc here
;
i = 'a'
rept 26
db i
i = i+1
endm
;
; Output all other characters here.
;
i = 'Z'+1
rept 255-'Z'
db i
i = i+1
endm
;
stdData ends
end